home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / QBWIZ12.ARJ / VIEW.ASM < prev   
Assembly Source File  |  1991-02-20  |  1KB  |  47 lines

  1. comment #
  2.  
  3.    +----------------------------------------------------------------------+
  4.    |                                                                      |
  5.    |         QBWIZ  Copyright (c) 1990-1991  Thomas G. Hanlin III         |
  6.    |                                                                      |
  7.    |                    QuickBASIC Video Access Library                   |
  8.    |                                                                      |
  9.    |               assembled with the excellent OPTASM by SLR             |
  10.    |                                                                      |
  11.    +----------------------------------------------------------------------+
  12.  
  13. #
  14.  
  15. public  VIEWTOP, VIEWBOTTOM
  16.  
  17.  
  18. .model medium
  19.  
  20. .code
  21.  
  22.  
  23.  
  24. VIEWTOP       proc                     ; get top VIEW PRINT row
  25.               xor            ax,ax
  26.               mov            al,b$WDOTOP
  27.               ret
  28. VIEWTOP       endp                     ; get top VIEW PRINT row
  29.  
  30.  
  31.  
  32. VIEWBOTTOM    proc                     ; get bottom VIEW PRINT row
  33.               xor            ax,ax
  34.               mov            al,b$WDOBOT
  35.               ret
  36. VIEWBOTTOM    endp                     ; get bottom VIEW PRINT row
  37.  
  38.  
  39.  
  40. .data
  41.  
  42. extb  b$WDOTOP, b$WDOBOT
  43.  
  44.  
  45.  
  46.               end
  47.